From: kaf24@scramble.cl.cam.ac.uk Date: Sun, 27 Jun 2004 22:35:00 +0000 (+0000) Subject: bitkeeper revision 1.1020.1.1 (40df4b94lJE4UbrmICQf_fatdqMCOw) X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~18099^2 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22?a=commitdiff_plain;h=1b3d4ca66d29796d9ffee2ea1464ed2113a72563;p=xen.git bitkeeper revision 1.1020.1.1 (40df4b94lJE4UbrmICQf_fatdqMCOw) Quieten down console connections. Remove telnet control sequence. --- diff --git a/tools/xenmgr/lib/server/console.py b/tools/xenmgr/lib/server/console.py index 6db905dc0b..ad5ff59abd 100755 --- a/tools/xenmgr/lib/server/console.py +++ b/tools/xenmgr/lib/server/console.py @@ -36,9 +36,11 @@ class ConsoleProtocol(protocol.Protocol): self.loseConnection() return else: - self.transport.write("Connected to console %d on domain %d\n" - % (self.idx, self.controller.dom)) - self.setTelnetTransmitBinary() + # KAF: A nice quiet successful connect. Don't bother with telnet + # control sequence -- telnet is not the appropriate protocol here. + #self.transport.write("Connected to console %d on domain %d\n" + # % (self.idx, self.controller.dom)) + #self.setTelnetTransmitBinary() eserver.inject('xend.console.connect', [self.idx, self.addr[0], self.addr[1]])